home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / other / littelcomp / r5 / lc / examples / limit.l < prev    next >
Text File  |  2000-02-28  |  142b  |  16 lines

  1. //
  2.  
  3. PROC main
  4.    VAR min
  5.    VAR max
  6.    VAR mu
  7.    CODESTART
  8.    COPY -67 min
  9.    COPY 100 max
  10.    COPY 10 mu
  11.    LIMIT min max mu
  12. ENDPROC mu
  13. END
  14.  
  15.  
  16.